home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Team 23
/
HS_Tuning.iso
/
Optimisation
/
JV16 Powertools 1.6
/
Setup.exe
/
{app}
/
Documentation
/
Example Scripts
/
2. Hello worlds
/
Hello World v5.jvb
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2003-05-12
|
355 b
|
15 lines
If ([ShowMessageEx Info YesNo "Would you like me to say Hello World?"] = Yes)
[
Define count;
Count := [InputBox "Hello world" "How many times you would like me to say it?" "2"];
If ([IsNumber $Count] = No)
[
ShowMessage Hey, $Count is not a number...;
Terminate;
]
For (i := 1 to $Count, +1) [ ShowMessage Hello World!; ]
]